Source code :: Fluke 451P.php

[Return]
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
##!/usr/bin/python2
## -*- coding: utf-8 -*-

<%page args="shot, page" />

<%
    from pygolem_lite.web import make_config, get_page_paths, cat, make_zoom_image
    import re, os
    from pygolem_lite import Shot
    page_path, base_path, page  = get_page_paths(shot, page)
%>

<h2>Integrated dose measurements</h2>

<table>
	<tr>
		<th>Discharge phase</th>
		<th>Integrated dose &#91;Sv&#93;</th>
	</tr>

	<tr>
		<td>before</td>
		<td>${cat('pre_Sv')}</td>
	</tr>

	<tr>
		<td>after</td>
		<td>${cat('post_Sv')}</td>
	</tr>

	<tr>
		<td>difference</td>
		<td>${cat('diff_Sv')}</td>
	</tr>
</table>

<h2>Diagnostic instrument</h2>
<a href="http://www.flukebiomedical.com/Biomedical/usen/radiation-safety/Survey-Meters/451P-pressurized-ion-chamber-radiation-detector-survey-meter.htm?PID=54793>Fluke Biomedical 451P Pressurized μR Ion Chamber Radiation Survey Meter</a>

<h3>Communication scripts</h3>
<dl>
	<dt><a href="main.py">main.py</a></dt>
		<dd>main communication script in Python</dd>
	<dt><a href="makefile">makefile</a></dt>
		<dd>execution batch file</dd>
</dl>

Navigation